[Docker] Docker Volume


  • docker volume share with host

    docker run --name website -v C:\Docker\website:/usr/share/nginx/html -d -p 3000:80 nginx

  • docker volume share between containers

    docker run --name website-copy --volumes-from website -d -p 8081:80 nginx

#docker






你可能感興趣的文章

C++練習 判別token類型

C++練習 判別token類型

人性較量Day05~工人智慧與人工智慧

人性較量Day05~工人智慧與人工智慧

Loss to where? - loss function

Loss to where? - loss function






留言討論